home *** CD-ROM | disk | FTP | other *** search
/ Solaris Press Kit / Solaris Press Kit.iso / mac / Media / Solaris.dxr / Internal_16_next behavior.ls < prev    next >
Encoding:
Text File  |  2002-10-23  |  204 b   |  11 lines

  1. global gPicNo
  2.  
  3. on mouseUp me
  4.   gPicNo = integer(gPicNo + 1)
  5.   if gPicNo > 10 then
  6.     gPicNo = 1
  7.   end if
  8.   sprite(10).member = member("pic" & gPicNo)
  9.   sprite(15).member = member("caption" & gPicNo)
  10. end
  11.